home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / e_to_l / fbuilder / delphi / demos / eiscbk.dpr < prev    next >
Encoding:
Text File  |  1996-09-15  |  165 b   |  13 lines

  1. program Eiscbk;
  2.  
  3. uses
  4.   Forms,
  5.   Eiscbkfm in 'EISCBKFM.PAS' {Form2};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TForm2, Form2);
  11.   Application.Run;
  12. end.
  13.